home *** CD-ROM | disk | FTP | other *** search
/ Freaks Macintosh Archive / Freaks Macintosh Archive.bin / Freaks Macintosh Archives / HackAddict™ Magazine / HackAddict 04 / HackAddict 4 / HackAddict 4.rsrc / TEXT_134.txt < prev    next >
Text File  |  1997-07-21  |  1KB  |  33 lines

  1.      A Small FoolProof Trick
  2.  
  3.  
  4.  There are many ways people say to bypass foolproof but this way is very easy...a kid at my school came up with the idea. Open Apple Script editor then open the extensions folder. Hit record and drag the FoolProof extension into the trash and hit stop.
  5.  
  6. should look like this:
  7. tell application "Finder"
  8.     activate
  9.     beep
  10.     select file "FoolProof INIT" of folder "Extensions" of folder "System Folder" of startup disk
  11.     delete selection
  12.     beep
  13.     beep
  14.     beep
  15. end tell
  16.  
  17. Okay, now this will be the FoolProof Killer...save as run only script. Put some thing in the dialog. Just restart...wow no more FoolProof amaze your friends.
  18.  
  19. Now you want to return the FoolProof Extension to its rightful place. Make a new apple script open the trash can and the extensions folder hit record once more and drag the extension from the trash to the extensions folder hit stop.
  20.  
  21. should look like this:
  22. tell application "Finder"
  23.     activate
  24.     select trash
  25.     open selection
  26.     move file "FoolProof INIT" of trash to folder "Extensions" of folder "System Folder" of startup disk
  27.     close window of trash
  28. end tell
  29.  
  30.  
  31. Memento Mori
  32.  
  33.